home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / fl / video / SkinErrorEvent.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  570 b   |  23 lines

  1. package fl.video
  2. {
  3.    import flash.events.ErrorEvent;
  4.    import flash.events.Event;
  5.    
  6.    public class SkinErrorEvent extends ErrorEvent
  7.    {
  8.       
  9.       public static const SKIN_ERROR:String = "skinError";
  10.        
  11.       
  12.       public function SkinErrorEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:String = "")
  13.       {
  14.          super(param1,param2,param3,param4);
  15.       }
  16.       
  17.       override public function clone() : Event
  18.       {
  19.          return new SkinErrorEvent(type,bubbles,cancelable,text);
  20.       }
  21.    }
  22. }
  23.